home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-04 | 1.2 KB | 45 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- APPVER=4.0
-
- all:framer.exe
-
- !include <win32.mak>
-
- # Update the resource if necessary
-
- cflags=$(cflags) -DUNICODE
-
- framer.res: framer.rc resource.h
- $(rc) $(rcvars) $(rcflags) framer.rc
-
- # Update the object file if necessary
-
- framer.obj: framer.cpp framer.h
- $(cc) $(cflags) $(cvars) $(cdebug) framer.cpp
-
- iadvsink.obj: iadvsink.cpp framer.h
- $(cc) $(cflags) $(cvars) $(cdebug) iadvsink.cpp
-
- iclisite.obj: iclisite.cpp framer.h
- $(cc) $(cflags) $(cvars) $(cdebug) iclisite.cpp
-
- iipsite.obj: iipsite.cpp framer.h
- $(cc) $(cflags) $(cvars) $(cdebug) iipsite.cpp
-
- site.obj: site.cpp framer.h site.h
- $(cc) $(cflags) $(cvars) $(cdebug) site.cpp
-
- idocsite.obj: idocsite.cpp framer.h
- $(cc) $(cflags) $(cvars) $(cdebug) idocsite.cpp
-
- # Update the executable file if necessary, and if so, add the resource back in.
-
- framer.exe: framer.obj iadvsink.obj idocsite.obj iclisite.obj iipsite.obj site.obj framer.res
- $(link) $(ldebug) $(lflags) -out:framer.exe framer.obj iadvsink.obj idocsite.obj iclisite.obj iipsite.obj site.obj framer.res $(olelibs) uuid3.lib
-
- clean:
- del *.obj
- del *.exe
- del *.res
-